Tables [dbo].[PaymentApplicationRestrictionRef]
Properties
PropertyValue
Created10:31:32 AM Tuesday, March 02, 2010
Last Modified11:40:05 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_PaymentApplicationRestrictionRef: PaymentApplicationRestrictionCodePaymentApplicationRestrictionCodeint4
No
Indexes AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionDesc: PaymentApplicationRestrictionDescPaymentApplicationRestrictionDescnvarchar(50)100
No
Indexes AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionName: PaymentApplicationRestrictionNamePaymentApplicationRestrictionNamenvarchar(20)40
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_PaymentApplicationRestrictionRef: PaymentApplicationRestrictionCodePK_PaymentApplicationRestrictionRefPaymentApplicationRestrictionCode
Yes
AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionDescPaymentApplicationRestrictionDesc
Yes
AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionNamePaymentApplicationRestrictionName
Yes
SQL Script
CREATE TABLE [dbo].[PaymentApplicationRestrictionRef]
(
[PaymentApplicationRestrictionCode] [int] NOT NULL,
[PaymentApplicationRestrictionDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[PaymentApplicationRestrictionName] [nvarchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[PaymentApplicationRestrictionRef] ADD CONSTRAINT [PK_PaymentApplicationRestrictionRef] PRIMARY KEY CLUSTERED ([PaymentApplicationRestrictionCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PaymentApplicationRestrictionRef] ADD CONSTRAINT [AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionDesc] UNIQUE NONCLUSTERED ([PaymentApplicationRestrictionDesc]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PaymentApplicationRestrictionRef] ADD CONSTRAINT [AK_PaymentApplicationRestrictionRef_PaymentApplicationRestrictionName] UNIQUE NONCLUSTERED ([PaymentApplicationRestrictionName]) ON [PRIMARY]
GO
Uses
Used By